Boost
boost
arrow_drop_down
Boost.Uuid

This Release

James E. King III
James E. King III
Maintainer
Andy Tompkins
Andy Tompkins
Maintainer

Uuid, part of collection of the Boost C++ Libraries, provides a C++ wrapper around RFC-4122 UUIDs.

License

Distributed under the Boost Software License, Version 1.0.

Properties

  • C++03
  • Header-only

Build Status

Branch GHA CI Appveyor CI Coverity Scan codecov.io Deps Docs Tests
master Build Status Build status Coverity Scan Build Status codecov Deps Documentation Enter the Matrix
develop Build Status Build status Coverity Scan Build Status codecov Deps Documentation Enter the Matrix

Directories

Name Purpose
doc documentation
include headers
test unit tests

More information

  • Ask questions
  • Report bugs: Be sure to mention Boost version, platform and compiler you're using. A small compilable code sample to reproduce the problem is always good as well.
  • Submit your patches as pull requests against develop branch. Note that by submitting patches you agree to license your modifications under the Boost Software License, Version 1.0.
  • Discussions about the library are held on the Boost developers mailing list. Be sure to read the discussion policy before posting and add the [uuid] tag at the beginning of the subject line.

Code Example - UUID Generation

// Copyright 2017 James E. King III
// Distributed under the Boost Software License, Version 1.0.
// (See https://www.boost.org/LICENSE_1_0.txt)
//  mkuuid.cpp example

#include <boost/lexical_cast.hpp>
#include <boost/uuid/random_generator.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <iostream>

int main(void)
{
    boost::uuids::random_generator gen;
    std::cout << boost::lexical_cast<std::string>(gen()) << std::endl;
    return 0;
}

----

$ clang++ -ansi -Wall -Wextra -std=c++03 -O3 mkuuid.cpp -o mkuuid
$ ./mkuuid
2c186eb0-89cf-4a3c-9b97-86db1670d5f4
$ ./mkuuid
a9d3fbb9-0383-4389-a8a8-61f6629f90b6

All Time

Andrey Semashev
Andrey Semashev
Contributor
Edward Diener
Edward Diener
Contributor
Marshall Clow
Marshall Clow
Contributor
Beman Dawes
Beman Dawes
Contributor
Peter Dimov
Peter Dimov
Contributor
Daniel James
Daniel James
Contributor
Antony Polukhin
Antony Polukhin
Contributor
Takeshi Abe
Takeshi Abe
Contributor
James E. King, III
Contributor
Andrey Semashev
Andrey Semashev
Contributor
VemundH
VemundH
Contributor
Ahmed Charles
Ahmed Charles
Contributor
Marcel Raad
Marcel Raad
Contributor
Erich Keane
Contributor
Peter Dimov
Peter Dimov
Contributor
Volo Zyko
Volo Zyko
Contributor
Marcel Raad
Marcel Raad
Contributor
Tinko Bartels
Tinko Bartels
Contributor
Edward Diener
Edward Diener
Contributor
Steven Watanabe
Steven Watanabe
Contributor
Bryce Adelstein-Lelbach
Bryce Adelstein-Lelbach
Contributor
Jürgen Hunold
Jürgen Hunold
Contributor
Alexander Grund
Alexander Grund
Contributor
aldonin
aldonin
Contributor
James E. King III
Contributor
Anton Polukhin
Contributor
Tobias Klauser
Tobias Klauser
Contributor
Michael Caisse
Michael Caisse
Contributor
tomy2105
tomy2105
Contributor
Gudmundur Adalsteinsson
Gudmundur Adalsteinsson
Contributor